home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / CONTRIB / ASPI.ZIP / tape.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-25  |  362 b   |  11 lines

  1. /* all functions exit on error, after describing the error */
  2. void tape_open(void);
  3. void tape_rewind(int wait);
  4. void tape_set_blocksize(unsigned long blocksize);
  5. int  tape_read(void *buffer); /* 0=OK, 1=LEOT */
  6. void tape_write(void *buffer);
  7. void tape_write_filemark(int count, int isshort);
  8. void tape_close(void);
  9.  
  10. char *tape_fmtnum(unsigned long n);
  11.